home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / readv.c < prev    next >
C/C++ Source or Header  |  1990-08-15  |  2KB  |  70 lines

  1. /* 
  2.  * readv.c --
  3.  *
  4.  *    Procedure to map from Unix readv system call to Sprite.
  5.  *
  6.  * Copyright 1986 Regents of the University of California
  7.  * All rights reserved.
  8.  */
  9.  
  10. #ifndef lint
  11. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/readv.c,v 1.2 90/08/15 15:25:11 kupfer Exp $ SPRITE (Berkeley)";
  12. #endif not lint
  13.  
  14. #include "sprite.h"
  15. #include "fs.h"
  16. #include "sys.h"
  17. #include "compatInt.h"
  18. #include <sys/types.h>
  19. #include <sys/uio.h>
  20.  
  21.  
  22. /*
  23.  *----------------------------------------------------------------------
  24.  *
  25.  * readv --
  26.  *
  27.  *    Procedure to map from Unix readv system call to Sprite Fs_Read.
  28.  *
  29.  * Results:
  30.  *    UNIX_ERROR is returned upon error, with the actual error code
  31.  *    stored in errno.  Upon success, the number of bytes actually
  32.  *    read is returned.
  33.  *
  34.  * Side effects:
  35.  *    The buffers are filled with the number of bytes indicated by
  36.  *    the returned value.  (Each buffer has no more bytes than was 
  37.  *    specified by that buffer's length parameter.)
  38.  *
  39.  *----------------------------------------------------------------------
  40.  */
  41.  
  42. int
  43. readv(stream, iov, iovcnt)
  44.     int stream;            /* descriptor for stream to read. */
  45.     register struct iovec *iov;    /* pointer to array of iovecs. */
  46.     int iovcnt;            /* number of  iovecs in iov. */
  47. {
  48.     ReturnStatus status;    /* result returned by Fs_Read */
  49.     int amountRead;        /* place to hold number of bytes read */
  50.     int totalRead = 0;    /* place to hold total # of bytes written */
  51.     int i;
  52.  
  53.     for (i=0; i < iovcnt; i++, iov++) {
  54.     status = Fs_Read(stream, iov->iov_len, iov->iov_base, 
  55.                             &amountRead);
  56.     if (status != SUCCESS) {
  57.         break;
  58.     } else {
  59.         totalRead += amountRead;
  60.     }
  61.     }
  62.  
  63.     if (status != SUCCESS && totalRead == 0) {
  64.     errno = Compat_MapCode(status);
  65.     return(UNIX_ERROR);
  66.     } else {
  67.     return(totalRead);
  68.     }
  69. }
  70.